home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / e / misc.save / 000194_fdc@panix.com_Thu Sep 25 10:57:37 2008.msg < prev    next >
Internet Message Format  |  2020-01-01  |  4KB

  1. Path: reader1.panix.com!panix!not-for-mail
  2. From: Frank Da Cruz <fdc@panix.com>
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: Re: File transfer from Linux to Win XP over USB - basic questions
  5. Date: Thu, 25 Sep 2008 14:56:24 +0000 (UTC)
  6. Organization: PANIX Public Access Internet and UNIX, NYC
  7. Lines: 77
  8. Message-ID: <slrngdn9m2.pv2.fdc@panix2.panix.com>
  9. References: <0eebec1e-7566-453e-857b-49b1310f491e@2g2000hsn.googlegroups.com> <notqp5-kti.ln1@neptune.markhobley.yi.org>
  10. Reply-To: fdc@columbia.edu
  11. NNTP-Posting-Host: panix2.panix.com
  12. X-Trace: reader1.panix.com 1222354584 23112 166.84.1.2 (25 Sep 2008 14:56:24 GMT)
  13. X-Complaints-To: abuse@panix.com
  14. NNTP-Posting-Date: Thu, 25 Sep 2008 14:56:24 +0000 (UTC)
  15. User-Agent: slrn/0.9.8.0 (NetBSD)
  16. Xref: panix comp.protocols.kermit.misc:15786
  17.  
  18. On 2008-09-12, Mark Hobley <markhobley@hotpop.donottypethisbit.com> wrote:
  19. : alexander <awgabis@juno.com> wrote:
  20. :
  21. :> 1) Are there versions of Kermit available (say, like, on the Columbia
  22. :> U. site http://www.columbia.edu/kermit) that support this operation?
  23. :
  24. : You can just install gkermit on the Linux machine, and a kermit capable 
  25. : terminal emulator on the Microsoft Windows machine. (I think TeraTerm, 
  26. : PuTTY, or Reflections would suit this.)
  27. :
  28. Last time I looked, PuTTY did not include Kermit protocol.  Teraterm did but
  29. it was not a very good implementation.  I believe Reflections supports
  30. Kermit protocol, but it's very expensive.
  31.  
  32. There is really no reason to use G-Kermit on Linux instead of C-Kermit.
  33. G-Kermit is a bare-bones minimal Kermit protocol implementation that was
  34. produced to satisfy the demands of license purists.  C-Kermit is generally
  35. faster and it does more, and anybody who wants to use it can download it
  36. for free and use it all they want to (they just can't turn around and
  37. sell it to somebody else).
  38.  
  39. :> 1a) If there is a ver that works under Linux (or one of its
  40. :> manifestations), would it be necessary to recompile it from source on
  41. :> my particular system?
  42. :
  43. : gkermit is available on most Linux boxes. There is not problem here.
  44. :  
  45. C-Kermit is available for all Linux boxes, as Mark S said.  At the present
  46. moment the best place to get it is here:
  47.  
  48.   http://www.columbia.edu/kermit/ckdaily.html
  49.  
  50. The version you'll find here has a few updates that might be necessary for
  51. certain Linux distributions.
  52.  
  53. In any case, for best results with file transfer, if you are going to be using
  54. Kermit protocol, you should use real Kermit software on each end of the
  55. connection because it works better and it's supported.  The Kermit software
  56. for Windows is Kermit 95:
  57.  
  58.   http://www.columbia.edu/kermit/k95.html
  59.  
  60. :> 2) What sort of cabling would I need to do this?
  61. :
  62. : You could just use a crossover network cable, if there is no RS232 port 
  63. : on the machine.
  64. :
  65. About serial-port cables, see:
  66.  
  67.   http://www.columbia.edu/kermit/cable.html
  68.  
  69. :> 3) Does anyone know about file format compatibility issues between
  70. :> Linux and Windows?
  71. :
  72. : Files created in Microsoft Windows may have CRLF line ends, whereas on 
  73. : Linux based systems, they have just LF line ends.
  74. :
  75. Kermit 95 and C-Kermit can be used together to transfer files between
  76. Linux and Windows (and most any other pair of platforms) without the user
  77. having to be concerned with these issues, or having to worry about the
  78. difference between text and binary files.  All necessary conversions are
  79. done automatically.
  80.  
  81. : There is an ambiguity in the RTF standard, which means that RTF files 
  82. : created on Microsoft Windows may not be readable on GNU/Linux based 
  83. : systems, even though the files are to the standards stated.
  84. :
  85. :> One would hope that the Kermits on each end would somehow handle this 
  86. :> transparently.
  87. :
  88. As far as Kermit is concerned, RTF files are text files.  Kermit does not
  89. convert application-specific formats between applications or platforms;
  90. neither does any other file-transfer program that I know of.  It can, however,
  91. (and does) convert between text-file record formats and text-file character
  92. encodings (e.g. Windows code pages, ISO 8859, UTF8, etc).
  93.  
  94. - Frank